home *** CD-ROM | disk | FTP | other *** search
- { %filename% -- modeless dialog }
- { Created %date% %time% by AppMaker }
-
- { We recommend that you not modify this module and instead modify }
- { its subclass, %dlogname%. The 'z' prefix on this module marks% %}
- { a module which is likely to be regenerated by AppMaker after you }
- { make changes to the user interface. The modules without the 'z' }
- { prefix will not be regenerated by AppMaker unless you delete them. }
- { Using a separate subclass to override the AppMaker-generated code }
- { lets you regenerate code without losing your hand-coded changes. }
-
- Unit %unitname%;
- Interface
-
- Uses
- TCL,
- AMCL,
- %AppName%Intf;
-
- {----------}
- Implementation
-
- {----------}
- Procedure Z%dlogname%.IZ%dlogname% (aSupervisor: CDirectorOwner);
- var
- enclosure: CView;
- supervisor: CBureaucrat;
- Begin
- inherited IAMDialogDirector (%dlogname%ID, aSupervisor);
-
- enclosure := itsWindow;
- supervisor := itsWindow;
- %for each item gen create%
-
- End; {IZ%dlogname%}
-
- %for each item gen zAuxiliaryMethod%
- {----------}
- Procedure Z%dlogname%.UpdateMenus;
- Begin
- inherited UpdateMenus;
-
- %for each item gen UpdateMenus%
-
- End; {UpdateMenus}
-
- End. {%unitname%}
-